body {
  font-family: Arial, sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  padding: 0;
}

header {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

h1 {
  padding-top: 30px;
  font-size: 36px;
  margin: 0;
  display: flex;
  justify-content: center;
}

p {
  font-size: 18px;
  margin: 10px 0;
}

.accueil {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}
.accueil a {
  text-decoration: none;
}
.accueil a button {
  margin: 20px 0px;
  justify-content: center;
}

.accueil a button {
  font-size: 30px;
}
.container {
  max-width: 800px;
  min-height: 70vh;
  margin: 20px auto;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  /* background-image: url("../assets/image/image_film.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center; */
}
th,
td {
  padding-right: 20px;
}

.btn {
  display: inline-block;
  background-color: #007bff;
  color: #fff;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  margin: 10px;
}

.btn:hover {
  background-color: #0056b3;
}

.donnee_image {
  width: 100%;
  max-height: 400px;
}

footer {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 10px 0;
}

/*Bouton*/
.button a {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.button a p {
  margin-left: 20px;
}
.button {
  margin-top: 20px;
  display: flex;

  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  gap: 15px;
  background-color: #007acc;
  outline: 3px #007acc solid;
  outline-offset: -3px;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: 400ms;
}

.button .text {
  color: white;
  font-weight: 700;
  font-size: 1em;
  transition: 400ms;
}

.button svg path {
  transition: 400ms;
}

.button:hover {
  background-color: transparent;
}

.button:hover .text {
  color: #007acc;
}

.button:hover svg path {
  fill: #007acc;
}

/* Style du bouton de suppression */
.delete-button {
  background-color: #ff6347; /* Couleur de fond */
  color: white; /* Couleur du texte */
  border: none; /* Suppression de la bordure */
  padding: 10px 20px; /* Espacement intérieur du bouton */
  border-radius: 5px; /* Coins arrondis */
  cursor: pointer; /* Curseur au survol */
  transition: background-color 0.3s ease; /* Animation de transition pour le changement de couleur de fond */
}

/* Changement de couleur de fond au survol */
.delete-button:hover {
  background-color: #d43f3a;
}

.edit-button {
  background-color: #0f6d3c; /* Couleur de fond */
  color: white; /* Couleur du texte */
  border: none; /* Suppression de la bordure */
  padding: 10px 20px; /* Espacement intérieur du bouton */
  border-radius: 5px; /* Coins arrondis */
  cursor: pointer; /* Curseur au survol */
  transition: background-color 0.3s ease; /* Animation de transition pour le changement de couleur de fond */
}

/* Changement de couleur de fond au survol */
.edit-button:hover {
  background-color: #0d944e;
}
